home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19950528-19950726 / 000330_news@columbia.edu_Wed Jul 12 02:39:47 1995.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA25421
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 12 Jul 1995 11:25:09 -0400
  3. Received: by apakabar.cc.columbia.edu id AA21350
  4.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 12 Jul 1995 11:24:53 -0400
  5. Path: news.columbia.edu!panix!news.mathworks.com!zombie.ncsc.mil!simtel!news.sprintlink.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  6. From: jrd@cc.usu.edu (Joe Doupnik)
  7. Newsgroups: comp.protocols.kermit.misc
  8. Subject: Re: Read function
  9. Message-Id: <1995Jul12.083947.55907@cc.usu.edu>
  10. Date: 12 Jul 95 08:39:47 MDT
  11. References: <3u0des$e0r@tst.hk.super.net>
  12. Organization: Utah State University
  13. Lines: 20
  14. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  15.  
  16. In article <3u0des$e0r@tst.hk.super.net>, jcarroll@hk.super.net (John Carroll) writes:
  17. >     Is it possible to use a Kermit script (under MSDOS) to read an 
  18. > incoming value and assign it to a variable, or even write it to a file.
  19. >     I've been using a script to login to my Internet Provider, and request 
  20. > SLIP access. The Provider then gives me my ip_address etc. But it would be 
  21. > nice if I could write these values to a local configuration file for use with 
  22. > FTP, etc.
  23. >     But I can't seem to get to Kermit to store an incoming value - I can 
  24. > only read it and test it (the modem's "OK" for instance).
  25. >     PS, does the latest MSDOS Kermit have FTP support?
  26. -----------
  27.     Please check the user's manual and distribution docs. Variable
  28. \v(input) holds the most recent "line" from the INPUT and REINPUT
  29. commands. We provide extensive parsing tools via the \f functions to
  30. chop and dice that line to fit your situation, but you have to write the
  31. instructions. Once you have picked out the interesting piece then it's
  32. easy to WRITE FILE.
  33.     MSK does not provide FTP. FTP interfaces tend to run about 80KB
  34. in size and that's a rather large lump of material to put into the program.
  35.     Joe D.